home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Multicollection 5 Soft 1997
/
Multicollection 5 soft 1997 (Win NT 4.0 Work, Serv, OS2).iso
/
nt40_wrk
/
classes.zi_
/
CLASSES.ZIP
/
sun
/
misc
/
Lock.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1996-08-23
|
512 b
|
19 lines
package sun.misc;
public class Lock {
private boolean locked = false;
public final synchronized void lock() throws InterruptedException {
while(this.locked) {
this.wait();
}
this.locked = true;
}
public final synchronized void unlock() {
this.locked = false;
this.notifyAll();
}
}